458. Poor Pigs

1. Question

There are buckets buckets of liquid, where exactly one of the buckets is poisonous. To figure out which one is poisonous, you feed some number of (poor) pigs the liquid to see whether they will die or not. Unfortunately, you only have minutesToTest minutes to determine which bucket is poisonous.

You can feed the pigs according to these steps:

  1. Choose some live pigs to feed.
  2. For each pig, choose which buckets to feed it. The pig will consume all the chosen buckets simultaneously and will take no time.
  3. Wait for minutesToDie minutes. You may not feed any other pigs during this time.
  4. After minutesToDie minutes have passed, any pigs that have been fed the poisonous bucket will die, and all others will survive.
  5. Repeat this process until you run out of time.

Given buckets, minutesToDie, and minutesToTest, return the minimum number of pigs needed to figure out which bucket is poisonous within the allotted time.

2. Examples

Example 1:

Input: buckets = 1000, minutesToDie = 15, minutesToTest = 60
Output: 5

Example 2:

Input: buckets = 4, minutesToDie = 15, minutesToTest = 15
Output: 2

Example 3:

Input: buckets = 4, minutesToDie = 15, minutesToTest = 30
Output: 2

3. Constraints

  • 1 <= buckets <= 1000
  • 1 <= minutesToDie <= minutesToTest <= 100

4. References

来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/poor-pigs 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

5. Solutions

猪总共有的状态:minutesToTest / minutesToDie + 1。

class Solution {
  public int poorPigs(int buckets, int minutesToDie, int minutesToTest) {
    int pigs = 0;

    while (Math.pow(minutesToTest / minutesToDie + 1, pigs) < buckets) {
      pigs++;
    }

    return pigs;
  }
}
class Solution {
  public int poorPigs(int buckets, int minutesToDie, int minutesToTest) {
    int states = minutesToTest / minutesToDie + 1;
    int pigs = (int) Math.ceil(Math.log(buckets) / Math.log(states));
    return pigs;
  }
}
Copyright © rootwhois.cn 2021-2022 all right reserved,powered by GitbookFile Modify: 2023-03-05 10:55:51

results matching ""

    No results matching ""